
.mobile-menu {
	background-color: rgba(38,35,119,1);
	width: 40px;
	height: 40px;
	position: absolute;
	top: 23.5px;
	right: 10px;
	z-index:9;
	display:none;
}
.mobile-menu .mobile-header-icon {
	color: #ffffff;
	height: 100%;
	font-size: 25px;
	text-align: center;
	float: right;
	width: 100%;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-menu .mobile-header-icon:hover {
	background-color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
}
.mobile-menu .mobile-header-icon span {
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 1px;
	background-color: white;
}
.mobile-menu .mobile-header-icon span:nth-child(1) {
	transform: translateY(4px) rotate(0deg);
}
.mobile-menu .mobile-header-icon span:nth-child(2) {
	transform: translateY(-4px) rotate(0deg);
}
.mobile-menu .mobile-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}
.mobile-menu .mobile-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}
@keyframes clickfirst {
	0% {
		transform: translateY(4px) rotate(0deg);
	}
	100% {
		transform: translateY(0) rotate(45deg);
	}
}
@keyframes clicksecond {
	0% {
		transform: translateY(-4px) rotate(0deg);
	}
	100% {
		transform: translateY(0) rotate(-45deg);
	}
}
.mobile-menu .mobile-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}
.mobile-menu .mobile-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}
@keyframes outfirst {
	0% {
		transform: translateY(0) rotate(-45deg);
	}
	100% {
		transform: translateY(-4px) rotate(0deg);
	}
}
@keyframes outsecond {
	0% {
		transform: translateY(0) rotate(45deg);
	}
	100% {
		transform: translateY(4px) rotate(0deg);
	}
}
.ph-menu-wrapper {
	position: fixed;
	top: 87px;
	right: -100%;
	bottom: 0;
	z-index: 12;
	width: 100%;
	min-height: calc(100% - 87px);
	background: rgba(0,0,0, 0.7);
	overflow-y: auto;
	overflow-x: hidden;
}

.ph-menu-wrapper .ph-menu-list {
	overflow-y: scroll;
}
.ph-menu-wrapper li {
	display: block;
	position: relative;
	line-height: 45px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	cursor: pointer;
}
.ph-menu-wrapper .ph-menu-list li>a,.ph-menu-seclink .ph-menu-seclinka{
	font-size:16px;
}
.ph-menu-wrapper li a {
	padding: 0 15px;
	color: #fff;
	font-size: 16px;
	display: block;
	position:relative;
	/*text-transform: uppercase;*/
}
.ph-menu-wrapper li .ph-menu-thirdlist  a{
	padding-left:15px;
	color:#eee;
}
.ph-menu-thirdlist .ph-menu-seclink{
	color:#eee;
}
.ph-menu-seclink {
	padding: 0 15px;
	color: #fff;
	font-size: 16px;
	position:relative;
}

.ph-menu-seclink:after,.ph-menu-wrapper li>a:after{
	display:block;
	content:'More';
	width:52px;
	height:24px;
	line-height:24px;
	position:absolute;
	top:50%;
	right:15px;
	margin-top:-12px;
/*	background-image:url(../images/menu_btn.png);
	background-size:24px 48px;
	background-repeat:no-repeat;*/
}
.ph-menu-seclink.active:after{
	background-position-y:bottom;
}

.ph-menu-thirdlist {
	background: rgba(0,0,0, 0.1);
	display: none;
}
.ph-menu-seclink.active {
	background: rgba(38,35,119, 0.5);
}

.ph-menu-thirdlist .ph-menu-seclink{
	background: rgba(0,0,0, 0.1);
	padding-left:15px;
}
.ph-menu-thirdlist .ph-menu-thirdlist{
	padding-left:15px;
}

.ph-menu-wrapper li .ph-menu-thirdlist .ph-menu-thirdlist a{
	padding-left:0;
}